.logo {
	width: 80px;
	height: 80px;
}
.navbar-link {
	font-size: 25px;
}
.navbar-frame {
	display: flex;
	justify-content: center;
	width: 100%;
}
.navbar {
	width: fit-content;
}
.navbar-link {
	text-transform: uppercase;
	font-family: consolas,arial,cursive;
	font-weight: bold;
	cursor: hand;
}
.auth-btn:nth-child(even) {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.auth-btn:nth-child(odd) {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media (orientation: landscape) {
	.header {
		display: flex;
		align-items: center;
		padding: 10px;
		box-shadow: 0 0 5px 1px #000;
	}
	.navbar-link {
		display: inline-block;
		margin-left: 10px;
	}
}
@media (orientation: portrait) {
	.header {
		display: block;
		text-align: center;
		padding: 10px;
		box-shadow: 0 0 5px 1px #000;
	}
	.navbar-link {
		display: block;
	}
	.navbar-link:not(.auth) {
		box-shadow: 0 0 5px #000;
		margin: 10px;
	}
}
